home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / perlnt.zip / t / op / readdir.nt < prev    next >
Text File  |  1993-07-25  |  545b  |  23 lines

  1. #!./perl
  2.  
  3. eval 'opendir(NOSUCH, "no/such/directory");';
  4. if ($@) { print "1..0\n"; exit; }
  5.  
  6. print "1..3\n";
  7.  
  8. if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; }
  9. @D = grep(/^[^\.].*\.[Nn][Tt]$/, readdir(OP));
  10. closedir(OP);
  11.  
  12. if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; }
  13.  
  14. @R = sort grep (tr/[A-Z]/[a-z]/ && 1, @D);
  15. @G = <op/*.nt>;
  16.  
  17. while (@R && @G && "op/".$R[0] eq $G[0]) {
  18.     shift(@R);
  19.     shift(@G);
  20. }
  21. if (@R == 0 && @G == 0) {print "ok 3\n";} else { print "not ok 3\n";}
  22.  
  23.